home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Adobe Graphics & Publishing SDK 1996 December
/
Adobe Graphics & Publishing SDK 1996 December.iso
/
pc
/
pm65sdk
/
sourcecode
/
pagemakerclasslibrary
/
queries
/
pgetlinks.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1996-08-15
|
693b
|
30 lines
/*
*--- PGetLinks.cpp -------------------------------------------------------
* Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
* Created on Fri, Oct 13, 1995 @ 4:08 PM by Paul Ferguson.
*
* Description: For notes about this class, refer to the
* PCL documentation file PGetLinks.html
*-------------------------------------------------------------------------
*/
#include "PGetLinks.h"
#include "PReplyBuf.h"
PGetLinks::PGetLinks()
: PListQuery(pm_getlinks)
{
Scan();
}
void PGetLinks::Scan()
{
PReplyBuf reply(listMom.Current());
reply >> &fFilename >> &sKind >> nPage;
listMom.Update(reply);
}
// end of PGetLinks.cpp